/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  font-family: "Inter", sans-serif !important;

  h1, h2, h3, h4, h5, a, p {
    font-weight: 100;
  }
}

.custom-shadow {
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.custom-shadow:hover {
  box-shadow: 5px 5px 10px rgb(63, 65, 66);
}

.shop_product_wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(1px, 1fr));
  grid-gap: 20px;

}

.product-image {
  display: block;
  margin: 0 auto;
  object-fit: cover;
  width: 200px;
  height: 200px;
  max-width: 200px;
  max-height: 200px;
  border-radius: 10px;
}

.title-img img {
  max-width: 100%;
  object-fit: cover;
  height: 200px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.title-name {
  margin-top: 3% !important;
}

.my-separator {
  border-top: 1px solid #9c9c9c;
}

.wrap {
  align-items: flex-start;

  p {
    font: 300 14px / 22px "Inter", sans-serif;
    color: var(--text-color);
    margin: 0;
  }
}

.item-location-box {
  padding: 15px 10px;
  border-bottom: 1px solid var(--border-color);
  display: grid;
  /* Adjust grid columns to match the number of items (4 in this case) */
  grid-template-columns: 1fr 1fr 40px 120px;
  grid-gap: 40px;
  justify-items: center;
  align-items: center;
}

.item-location-box p {
  font: 300 14px / 22px "Inter", sans-serif;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .item-location-box {
    grid-template-columns: repeat(5, 1fr); /* larger screens: 5 columns */
    gap: 20px;
  }
}

.form-payment {
  padding: 15px 0px 15px 40px !important;
}

.container {
  max-width: 1220px !important;
}

.nav-tabs {
  display: flex;
  justify-content: space-around;
}

.nav-tabs .nav-link {
  flex: 1;
  text-align: center;
  padding: 1rem;
  border-radius: 0;
  font-weight: 500;
  color: #495057;
  border: none;
  border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
  border-bottom: 3px solid #0d6efd;
  color: #0d6efd;
}
